home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 2662 / gvp.lha / ScsiExamples / MakeFile < prev    next >
Encoding:
Makefile  |  1995-04-25  |  406 b   |  25 lines

  1. #
  2. # MakeFile for SCSI example programs
  3. #
  4.  
  5. LIBS = LIB:amiga.lib LIB:lcsr.lib
  6.  
  7. LD = BLink LIB $(LIBS) SC SD ND NOALVS BATCH FROM LIB:RXStartUp.obj
  8.  
  9. .c.o:
  10.   LC -cafs -O -rr -s -v -w $*
  11.  
  12. all : Inquiry ReadCapacity ReadSector RewindTape
  13.  
  14. Inquiry : Inquiry.o
  15.   $(LD) $< TO $@
  16.  
  17. ReadCapacity : ReadCapacity.o
  18.   $(LD) $< TO $@
  19.  
  20. ReadSector : ReadSector.o
  21.   $(LD) $< TO $@
  22.  
  23. RewindTape : RewindTape.o
  24.   $(LD) $< TO $@
  25.